home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d14 / cppwin10.arc / TEST.MK < prev    next >
Text File  |  1991-01-11  |  837b  |  40 lines

  1. #
  2. #    Make file for Test program
  3. #    Copyright (c) 1991 Comptech Software, Inc.
  4.  
  5. COMP= ztc -a -g -c -br -ms -W -DMSW -DLINTARGS $*.cpp
  6. LFLAGS = /NOE /NOD /CO /MAP /LI
  7.  
  8. .rc.res:
  9.     rc -r $*.rc
  10.  
  11. .cpp.obj:
  12.     $(COMP)
  13.  
  14. .cpp.hpp:
  15.     exhpp $*.cpp
  16.  
  17. all : test.exe 
  18.  
  19. test.lnk : test.mk
  20.     echo test cwind1 cdlg1 >test.lnk
  21.     echo test >>test.lnk
  22.     echo test >>test.lnk
  23.     echo wins libw slibcew zls pls >>test.lnk
  24.     echo test.def >>test.lnk
  25.  
  26. test.exe : test.obj test.res cwind1.obj cdlg1.obj test.lnk
  27.     link $(LFLAGS) @test.lnk
  28.     rc test.res test.exe
  29.  
  30. test.res : test.rc test.dlg menudef.h test.ico copendlg.dlg copendlg.h \
  31.     cselprn.dlg cselprn.h
  32.  
  33. test.obj : test.cpp cwind1.hpp cappl.hpp
  34.  
  35. cwind1.obj : cwind1.cpp cwind1.hpp cwind.hpp cdlg1.hpp cdlg.hpp cdlgabt.hpp\
  36.         copendlg.hpp
  37.  
  38. cdlg1.obj : cdlg1.cpp cdlg1.hpp cdlg.hpp
  39.  
  40.